880b2cc0b5978b91f6e154932ef97ddae665c679,src/cafe/image/gif/GIFTweaker.java,GIFTweaker,writeAnimatedGIF,#GIFFrame[]#number#OutputStream#,629

Before Change


	 * @throws Exception
	 */
	public static void writeAnimatedGIF(GIFFrame[] frames, int loopCount, OutputStream os) throws Exception {
		writeAnimatedGIF(frames, loopCount, ImageParam.getBuilder().applyDither(true).ditherThreshold(ImageParam.DEFAULT_DITHER_THRESHOLD).build(), os);
	}
	
	/**

After Change


	 * @throws Exception
	 */
	public static void writeAnimatedGIF(GIFFrame[] frames, int loopCount, OutputStream os) throws Exception {
		writeAnimatedGIF(frames, loopCount, ImageParam.getBuilder().applyDither(true).build(), os);
	}
	
	/**